home *** CD-ROM | disk | FTP | other *** search
- unit Aboutfm;
- interface
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls, Rzlabel;
-
- type
- TAboutBox = class(TForm)
- Panel2: TPanel;
- iconpanel: TPanel;
- ProgramIcon: TImage;
- RzLabel1: TRzLabel;
- Label1: TLabel;
- Label3: TLabel;
- Panel1: TPanel;
- CompanyLabel: TRzLabel;
- OKButton: TBitBtn;
- RzLabel2: TRzLabel;
- Label4: TLabel;
- Label2: TLabel;
- RzLabel3: TRzLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- AboutBox: TAboutBox;
-
- Procedure DisplayAbout;
-
- implementation
-
- {$R *.DFM}
-
- Procedure DisplayAbout;
- var about : TAboutBox;
- begin
- About := TAboutBox.Create(NIL);
- About.ShowModal;
- About.Free;
- end;
-
- end.
-
-